From 4c399695f9f58d2395384b4058fa97b98069858c Mon Sep 17 00:00:00 2001 From: Dominic Lachowicz Date: Fri, 22 Feb 2008 22:38:47 +0000 Subject: [PATCH] gtk-demo printing gives wrong results on win32 because it doesn't set the 2008-02-22 Dominic Lachowicz * demos/gtk-demo/printing.c (do_printing): gtk-demo printing gives wrong results on win32 because it doesn't set the printing units, which affect the transformation of the cairo context (#347125, Erik van Pienbroek) svn path=/trunk/; revision=19635 --- ChangeLog | 7 +++++++ demos/gtk-demo/printing.c | 3 +++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 630d4b70f6..200ce17bcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-02-22 Dominic Lachowicz + + * demos/gtk-demo/printing.c (do_printing): gtk-demo printing gives + wrong results on win32 because it doesn't set the printing units, + which affect the transformation of the cairo context + (#347125, Erik van Pienbroek) + 2008-02-22 Tor Lillqvist * tests/pixbuf-init.c: Add file missing from SVN, from the tarball. diff --git a/demos/gtk-demo/printing.c b/demos/gtk-demo/printing.c index 33b4b445f8..be1e066ca8 100644 --- a/demos/gtk-demo/printing.c +++ b/demos/gtk-demo/printing.c @@ -161,6 +161,9 @@ do_printing (GtkWidget *do_widget) g_signal_connect (G_OBJECT (operation), "end-print", G_CALLBACK (end_print), data); + gtk_print_operation_set_use_full_page (operation, FALSE); + gtk_print_operation_set_unit (operation, GTK_UNIT_POINTS); + gtk_print_operation_run (operation, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG, GTK_WINDOW (do_widget), &error); g_object_unref (operation); -- 2.30.2